home *** CD-ROM | disk | FTP | other *** search
- #
- # Copyright (C) 2004 Tenable Network Security
- #
- #
-
- if(description)
- {
- script_id(12011);
- script_version("$Revision: 1.2 $");
-
- name["english"] = "BETTERINTERNET detection";
-
- script_name(english:name["english"]);
-
- desc["english"] = "
- The remote host is using the BETTERINTERNET program.
- You should ensure that:
- - the user intended to install BETTERINTERNET (it is sometimes silently
- installed)
- - the use of BETTERINTERNET matches your corporate mandates and security
- policies.
-
- To remove this sort of software, you may wish to check out ad-aware or spybot.
-
-
- See also : http://pestpatrol.com/PestInfo/v/vx2_h_abetterinternet.asp
- Solution : Uninstall this software
- Risk factor : High";
-
-
-
- script_description(english:desc["english"]);
-
- summary["english"] = "BETTERINTERNET detection";
-
- script_summary(english:summary["english"]);
-
- script_category(ACT_GATHER_INFO);
-
- script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
- family["english"] = "Windows";
- script_family(english:family["english"]);
-
- script_dependencies("smb_registry_full_access.nasl");
- script_require_keys("SMB/registry_full_access");
-
- script_require_ports(139, 445);
- exit(0);
- }
-
-
- # start the script
-
- path[0] = "software\classes\clsid\{ddffa75a-e81d-4454-89fc-b9fd0631e726}";
- path[1] = "software\dbi";
- path[2] = "software\microsoft\code store database\distribution units\{30000273-8230-4dd4-be4f-6889d1e74167}";
- path[3] = "software\microsoft\windows\currentversion\shell extensions\approved\{ddffa75a-e81d-4454-89fc-b9fd0631e726}";
- path[4] = "software\microsoft\windows\currentversion\uninstall\dbi";
-
-
-
- include("smb_nt.inc");
- if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
-
- for (i=0; path[i]; i++) {
- val = registry_key_exists(key:path[i]);
- if(val != NULL) {security_hole(kb_smb_transport()); exit(0); }
- }
-
-
-